body{
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-family: "Montserrat", sans-serif;
    color: white;
    background-color: rgb(20, 20, 20);
}

* {
    -webkit-tap-highlight-color: transparent;
}

html::-webkit-scrollbar {
  width: 12px;
}

html::-webkit-scrollbar-track {
  background: linear-gradient(180deg, #3a3a3a, #3a3a3a);
  border-radius: 10px; 
}

html::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #2C2C2C, #181818);
  border-radius: 10px;
  border: 2px solid #202020;
  transition: 0.3s ease; 
}

html::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #2C2C2C, #181818); 
}


html {
  scroll-behavior: smooth; 
}

:root {
  --bg-color: #080808;
  --second-bg-color: #131313;
  --text-color: white;
  --main-color: #19e6d8;
}

.highlights{
  color: #e84c43 !important;
}

.dropdown {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.details-section.open .content {
    max-height: 2000px;
}
.icon {
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.details-section.open .icon {
    transform: rotate(180deg);
}





  .services {
    text-align: center;
    padding: 50px 20px;
    background-color: #111;
}

.services h1 {
  text-transform: uppercase;
    font-size: 2.5em;
    margin-bottom: 40px;
    margin-top: 50px;
    color: white;
}

.service-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    gap: 30px;
    margin: 0px 0px 100px 0px;
}

@media (max-width: 768px) {
  .service-container {
      flex-direction: column; 
      align-items: center;
      width: 100%;
  }

  .service {
      width: 80%;
      max-width: 600px; 
      margin-bottom: 20px;
  }
}


@media (max-width: 480px) {
  .service-container {
      flex-direction: column;
      align-items: center;
      width: 100%;
  }

  .service {
      width: auto!important; 
      margin-bottom: 20px; 
  }

  .dropdown{
    font-size: 1.5em !important;
  }

  .icon {
    font-size: 17px !important;
  }
  .drop-holder h1{
    padding-right: 15px;
    padding-left: 15px;
  }
}

.service {
    background: #222;
    border-radius: 10px;
    padding: 20px;
    width: 500px;
    color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.service h2 {
    color: #e84c43;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.service ul {
    text-align: left;
    margin-top: 15px;
}

.service ul li {
    margin-bottom: 10px;
    color: #ddd;
}

.cta-button {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #4682b4;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #4682b4;
}

.details-section {
  padding: 50px 40px; /* Mehr Innenabstand für Luftigkeit */
  margin-bottom: 50px;
  background-color: #1c1c1c; /* Dunkler Hintergrund für bessere Lesbarkeit */
  border-radius: 15px; /* Abgerundete Ecken */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); /* Schatten für Tiefe */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin: 40px 15px;
  height: 100%;
  user-select: none;
}


.details-section:hover {
  transform: translateY(-5px); 
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4); 
}


.details-section h2 {
  font-size: 2em;
  margin-bottom: 20px;
  color: #ddd;
}


.details-section p {
  font-size: 1.3em;
  margin-bottom: 20px;
  color: #ddd;
  line-height: 1.5;
}

  /* Rezensionen Abschnitt */
 .reviews {
    padding: 30px 20px;
    background-color: #222;
    text-align: center;
    margin-bottom: 50px;
    border-radius: 25px;
}

.reviews h2 {
  text-transform: uppercase;
    font-size: 2.5em;
    margin-bottom: 40px;
    color: white;
}

.reviews-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.review {
    background-color: #333;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    padding: 30px;
    width: 30%;
    box-sizing: border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;  /* Zentriert den Inhalt vertikal */
    align-items: center;      /* Zentriert den Inhalt horizontal */
    text-align: center;
}

.review:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.review p {
    font-size: 1.1em;
    color: #ddd;
    margin-bottom: 20px;
    line-height: 1.8;
    text-align: center;
}

.reviewer-info {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

.stars i {
    color: gold;
    margin-right: 2px;
}

.reviewer-info h4 {
    margin-left: 10px; 
    font-size: 1.2em;
    font-weight: bold;
    color: #4682b4;
}


@media (max-width: 768px) {
    .reviews-container {
        flex-direction: column;
        align-items: center;
    }

    .review {
        width: 100%;
        margin-bottom: 20px;
    }
  
  html, body{
    overflow-x: hidden;
  }

}

@media (max-width: 480px) {
  
  	body{
    max-width: 430px;
    overflow-x: hidden;
  	}

  	.Btn-Senden {
      width: 100%;
      margin-right: 0;
  	}

  	nav {
      flex-direction: column;
  	}

  nav a {
      font-size: 16px;
      margin: 10px 0;
  	}
    input, textarea{
      max-width: 83.5vw;
    }
    
    .icon {
        font-size: 1.5em;
    }

    .TextBox, .Telefon-Kontakt {
      width: 100%;
  	}

    .TextBox{
      margin-bottom: 50px;
      }
 }
/* Grundlegendes Styling für die Dropdown-Schaltflächen */
.details-section {
  max-width: 85%;
  margin: 0 auto;
  padding: 20px;
  margin-bottom: 50px;
  font-family: 'Arial', sans-serif;
}

.dropdown {
  cursor: pointer;
  padding: 15px;
  background-color: #333;
  border: 1px solid #559dd810;
  border-radius: 5px;
  font-size: 18px;
  color: #333;
  margin-bottom: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.dropdown:hover {
  background-color: #333;
}

/* Styling für den Inhalt der Dropdowns */
.content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
  padding-left: 15px;
  margin-bottom: 15px;
  background-color: #161718;
  border-left: 3px solid #e84c43;
}

.content.open {
  max-height: 1000px; /* Genug Platz für Inhalte */
}

/* Styling der Texte */
p {
  font-size: 16px;
  color: white;
  line-height: 1.6;
  margin: 10px 0;
}

/* Pfeilsymbol für das Auf- und Zuklappen */
.icon {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.dropdown.active .icon {
  transform: rotate(180deg);
}

.drop-holder h1{
  text-transform: uppercase;
  text-align: center;
  font-size: 2.5em;
  color: white;
}


/* Parallax-Container */
.parallax {
  position: relative; /* Stelle sicher, dass das Parallax-Container relativ positioniert ist */
  min-height: 969px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url('https://images.pexels.com/photos/546819/pexels-photo-546819.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1'); /* Füge hier dein Bild hinzu */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.parallax::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Dunkler Overlay-Effekt */
  z-index: 1;
}

/* Parallax-Inhalt (Text, Überschriften etc.) */
.parallax-content {
  background-color: #080808ee;
  border-radius: 30px;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 95%;
  max-width: 85%;
  color: white;
  text-align: center;
}

.parallax-content span{
  color: #e84c43;
}

.parallax-content ul{
  text-align: left;
  gap: 10px;
}

.parallax-content ul li{
  padding-top: 10px;
}

.parallax-holder{
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.parallax h2 {
  font-size: 3rem;
  font-weight: 700;
  text-transform: uppercase;
}

.parallax p {
  font-size: 1.5rem;
  width: 90%;
  line-height: 1.6;
  margin: 0 auto;
}

@media(max-width: 800px){
  .parallax p {
    font-size: 1em;
  }
}

@media(max-width: 400px){
  .parallax h2 {
    font-size: 2.5em;
  }

  .dropdown-b-title{
    font-size: 1em !important;
  }
}

.cta-button {
  display: inline-block;
  margin-top: 20px;
  padding: 15px 25px;
  background-color: #e84c43;
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
  text-transform: uppercase;
  border: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  text-decoration: none;
  margin-bottom: 20px;
}

.cta-button:hover {
  background-color: #e84c43;
}

.highlight {
  color: #ffffff !important; /* Wähle eine auffällige Farbe */
  text-transform: uppercase;
  font-weight: bold; /* Fette Schrift, um die Wörter hervorzuheben */
  padding: 0 5px; /* Etwas Abstand für bessere Lesbarkeit */
  border-radius: 3px; /* Runde die Ecken des Hintergrunds ab */
}

/* Allgemeines Styling für die Liste */
.dropdown-list {
  display: flex;
  flex-direction:column;
  align-items: center;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 10px 0;
}

.dropdown-list li {
  margin-bottom: 5px;
  background-color: #333;
  border-radius: 5px;
  padding: 10px;
  width: 70%;
  position: relative;
}

/* Dropdown-Button und Icon */
.dropdown-b-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: #e9e7e7;
  font-size: 1.2rem;
  text-transform: uppercase;
}

.dropdown-b-icon {
  transition: transform 0.3s ease;
  color: #ddd !important;
}

/* Versteckte Inhalte */
.dropdown-b-content {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
  font-size: 1rem;
  padding: 0 10px;
  color: #ddd;
  margin-top: 5px;
}

/* Geöffneter Zustand */
.dropdown-b.open .dropdown-b-content {
  height: auto; /* Höhe dynamisch anpassen */
  overflow: visible;
  padding-top: 10px; /* Optional für bessere Abstände */
}

.dropdown-b.open .dropdown-b-icon {
  transform: rotate(180deg);
}

